using UnityEngine;
using System.Collections;
using System;
using Object = UnityEngine.Object;

namespace RootMotion
{
    public class DemoGUIMessage : MonoBehaviour
    {
        public string text;
        public Color color = Color.white;
        void OnGUI()
        {
            throw new NotImplementedException();
        }
    }
}